home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr28 / par300.zip / EXAMPL10.POM < prev    next >
Text File  |  1995-04-07  |  572b  |  25 lines

  1. ;
  2. ;   NOTE:  A quick-reference summary of POM commands appears in EXAMPL04.POM
  3. ;
  4. ;-------------------------------------------------------------------------------
  5. ;
  6. ;   Allow null lines
  7. ;
  8. MINLEN "0"
  9. ;
  10. ;   Decide which lines to properize
  11. ;
  12. IF $FLINE[1] = " " THEN prop = "Y" ELSE "N"
  13. IF $FLINE[1] = "-" THEN prop = "Y"
  14. ;
  15. ;   Properize, using the Properization Exceptions File GENERIC.PEF
  16. ;   The "empty" (null) methods string means "use all methods except S"
  17. ;
  18. BEGIN prop = "Y"
  19.   PROPER  $FLINE  ""  "GENERIC.PEF"
  20. END
  21. ;
  22. ;   Output
  23. ;
  24. OUTEND |{$FLINE}
  25.